What are the benefits of using `@include` in SASS?
Description : Advantages of using `@include` to apply mixins.
Answer :
`@include`inSASS is used to apply mixins to selectors, allowing you to reuse blocks ofCSS code with ease. This promotes consistency and reduces code duplication. For example,with a mixin `@mixin border-radius($radius) { border-radius: $radius; }`, use `@include border-radius(5px);` to apply rounded corners.`@include` enhances maintainability by centralizing style definitions.